home *** CD-ROM | disk | FTP | other *** search
/ Gigarom 1 / Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso / FILES / DEV / A-B / ASCII.cpt / ASCII.H < prev    next >
Text File  |  1985-10-19  |  857b  |  45 lines

  1. #define TEScrpLength 0xab0
  2. #define TEScrpHandle 0xab4
  3.  
  4. #define WINDOW 128
  5.  
  6. #define SAMPLESTR 1
  7. #define AUTHORSTR 2
  8.  
  9. #define MENUS 5
  10. #define APPLE 1
  11. #define ABOUT 1
  12. #define FILE 256
  13. #define OPEN 1
  14. #define QUIT 3
  15. #define EDIT 257
  16. #define TEUNDO 1
  17. #define TECUT 3
  18. #define TECOPY 4
  19. #define TEPASTE 5
  20. #define TECLEAR 6
  21. #define FONTS 258
  22. #define FONTSIZE 259
  23.  
  24. #define BAR 1
  25. #define WATCH 4
  26. #define FINGER 256
  27.  
  28. MenuHandle my_menus[MENUS];
  29. int the_menu, the_item;
  30. EventRecord my_event;
  31. CursHandle finger_c, watch_c, bar_c;
  32. WindowPtr which_w, the_w;
  33. WindowRecord w_record;
  34. Rect ascii_r, text_r, view_r, char_r[16][16];
  35. Point mouse_p;
  36. Handle sample_str, author_str;
  37. TEHandle h_text, h_authortext;
  38. int which_font;
  39. char font_name[64];
  40. int font_sizes[64];
  41. int num_of_sizes = 0;
  42. short scrap_count;
  43. int file_num, root_system, my_own_file, volume_num;
  44. SFReply file_record;
  45.